home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Intuition / Windows / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-20  |  336 b   |  19 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: lines openwindowtags visiblewindow winpubscreen
  4.  
  5. lines: lines.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. openwindowtags: openwindowtags.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. visiblewindow: visiblewindow.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. winpubscreen: winpubscreen.c
  15.     sc link $(CFLAGS) $@
  16.  
  17. clean:
  18.     -delete \#?.(o|lnk)
  19.